Post tagged: python programming

Integrating PEP8 & PyLint Tests with Nose & Xunit

Motivation

Most continuous integration platforms support the xunit/junit formats for test results. They allow a greater granularity of test management above a simple pass/fail. Nose supports xunit reports by default, but PEP8 and PyLint do not. By integrating PEP8 & PyLint into nose tests, we can include their results ...